home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK1.toast / Development Kits (Disc 1) / QuickDraw 3D / Samples / SampleCode / Plug-in - WireFrame Renderer / SR_MacDialog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-08-14  |  1.0 KB  |  37 lines  |  [TEXT/MPS ]

  1. /******************************************************************************
  2.  **                                                                             **
  3.  **     Module:        SR_MacDialog.h                                             **
  4.  **                                                                          **
  5.  **                                                                          **
  6.  **     Purpose:     Modal dialog routines, and other Macintosh specific         **
  7.  **                 routines                                                 **
  8.  **                                                                          **
  9.  **                                                                          **
  10.  **     Copyright (C) 1996 Apple Computer, Inc.  All rights reserved.         **
  11.  **                                                                          **
  12.  **                                                                          **
  13.  *****************************************************************************/
  14.  
  15. #ifndef SR_MacDialog_h
  16. #define SR_MacDialog_h
  17.  
  18. #include "QD3D.h"
  19.  
  20. #define SR_NAME_RESOURCE    16211    /* the ID of the resource string for
  21.                                      * this renderer's name
  22.                                      */
  23.  
  24. TQ3Status SR_GetNameString(
  25.     unsigned char                *dataBuffer, 
  26.     unsigned long                bufferSize,
  27.     unsigned long                *actualDataSize);
  28.  
  29. TQ3Status SR_MacModalDialog(
  30.     TQ3RendererObject            renderer,
  31.     TQ3DialogAnchor             dialogAnchor, 
  32.     TQ3Boolean                    *canceled,    
  33.     void                        *rendererPrivate);
  34.  
  35.  
  36. #endif  /*  SR_MacDialog_h  */
  37.